home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 1997 March / inter@ivo 1997-03.iso / wing / palanim.rc_ / palanim.rc
Text File  |  1994-08-13  |  2KB  |  56 lines

  1. /**************************************************************************
  2.  
  3.     PALANIM.RC - A palette animation demo for WinG
  4.  
  5.  **************************************************************************/
  6. /**************************************************************************
  7.  
  8.     (C) Copyright 1994 Microsoft Corp.  All rights reserved.
  9.  
  10.     You have a royalty-free right to use, modify, reproduce and 
  11.     distribute the Sample Files (and/or any modified version) in 
  12.     any way you find useful, provided that you agree that 
  13.     Microsoft has no warranty obligations or liability for any 
  14.     Sample Application Files which are modified. 
  15.  
  16.  **************************************************************************/
  17.  
  18. #include <windows.h>
  19. #include "palanim.h"
  20.  
  21. AppIcon  ICON    palanim.ico
  22.  
  23. AppAbout DIALOG 22, 17, 144, 75
  24. STYLE WS_POPUP | WS_DLGFRAME
  25. BEGIN
  26.     CTEXT "Microsoft Windows"                   -1, 37,  5, 60, 8
  27.     CTEXT "WinG Palette Animation App"                -1,  0, 14, 144, 8
  28.     CTEXT "Version 1.00"                        -1, 38, 34, 64, 8
  29.     CTEXT "Copyright (c) 1994 Microsoft Corp."   -1,  5, 47,132, 9
  30.     ICON  "AppIcon"                             -1,  9, 23,  0, 0
  31.     DEFPUSHBUTTON "OK"                        IDOK, 53, 59, 32, 14, WS_GROUP
  32. END
  33.  
  34. AppMenu menu
  35. begin
  36.     POPUP "&File"
  37.         begin
  38.             MENUITEM "&About..."         , MENU_ABOUT
  39.             MENUITEM "E&xit"             , MENU_EXIT
  40.         end
  41.     POPUP "&Wash"
  42.         begin
  43.             MENUITEM "&Red", MENU_RED
  44.             MENUITEM "&Green", MENU_GREEN
  45.             MENUITEM "&Blue", MENU_BLUE
  46.             MENUITEM SEPARATOR
  47.             MENUITEM "Include &Static Colors", MENU_STATIC
  48.         end
  49.     POPUP "&Animation"
  50.         begin
  51.             MENUITEM "&Palette", MENU_PALETTE
  52.             MENUITEM "&Curtain", MENU_CURTAIN
  53.         end
  54. end
  55. 
  56.